• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

systemsdk / docker-symfony-api / #76

pending completion
#76

push

web-flow
Bump symfony/security-bundle from 6.2.3 to 6.2.6

Bumps [symfony/security-bundle](https://github.com/symfony/security-bundle) from 6.2.3 to 6.2.6.
- [Release notes](https://github.com/symfony/security-bundle/releases)
- [Changelog](https://github.com/symfony/security-bundle/blob/6.2/CHANGELOG.md)
- [Commits](https://github.com/symfony/security-bundle/compare/v6.2.3...v6.2.6)

---
updated-dependencies:
- dependency-name: symfony/security-bundle
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

1470 of 2656 relevant lines covered (55.35%)

23.64 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/General/Application/Utils/Tests/StringableArrayObject.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace App\General\Application\Utils\Tests;
6

7
use App\General\Domain\Utils\JSON;
8
use ArrayObject;
9
use JsonException;
10
use Stringable;
11

12
/**
13
 * Class StringableArrayObject
14
 *
15
 * @package App\General
16
 */
17
class StringableArrayObject extends ArrayObject implements Stringable
18
{
19
    /**
20
     * @throws JsonException
21
     */
22
    public function __toString(): string
23
    {
24
        $iterator = static fn (mixed $input): mixed => $input instanceof Stringable ? (string)$input : $input;
×
25

26
        return JSON::encode(array_map($iterator, $this->getArrayCopy()));
×
27
    }
28
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc