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

ericfortmeyer / activity-log / 20361289242

19 Dec 2025 05:54AM UTC coverage: 56.627% (+4.3%) from 52.31%
20361289242

push

github

ericfortmeyer
test: remove code coverage attributes

Signed-off-by: Eric Fortmeyer <e.fortmeyer01@gmail.com>

329 of 581 relevant lines covered (56.63%)

1.68 hits per line

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

0.0
/src/Bootstrapper.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace EricFortmeyer\ActivityLog;
6

7
use Phpolar\Phpolar\App;
8
use Psr\Container\ContainerInterface;
9
use Psr\Http\Message\ServerRequestInterface;
10
use Psr\Http\Server\MiddlewareInterface;
11

12
/**
13
 * Bootstraps the application
14
 */
15
final readonly class Bootstrapper
16
{
17
    public function __construct(
18
        private ContainerInterface $container,
19
        private ServerRequestInterface $serverRequest,
20
        private MiddlewareInterface $callbackMiddleware,
21
        private MiddlewareInterface $loginMiddleware,
22
        private MiddlewareInterface $logoutMiddleware,
23
    ) {}
×
24

25
    public function __invoke(): void
26
    {
27
        App::create($this->container)
×
28
            // ->useCsrfMiddleware()
×
29
            ->useAuthorization()
×
30
            ->use($this->callbackMiddleware)
×
31
            ->use($this->loginMiddleware)
×
32
            ->use($this->logoutMiddleware)
×
33
            ->receive($this->serverRequest);
×
34
    }
35
}
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

© 2026 Coveralls, Inc