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

LM-Commons / LmcUser / 19677023224

25 Nov 2025 04:39PM UTC coverage: 90.508%. Remained the same
19677023224

push

github

web-flow
Merge pull request #134 from visto9259/3.9.x

Fixed php 8.4 deprecations warnings for implicit assignments of null in function calls

13 of 24 new or added lines in 19 files covered. (54.17%)

1602 of 1770 relevant lines covered (90.51%)

3.64 hits per line

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

0.0
/src/Factory/AuthenticationService.php
1
<?php
2

3
namespace LmcUser\Factory;
4

5
use Psr\Container\ContainerInterface;
6
use Laminas\ServiceManager\Factory\FactoryInterface;
7
use Laminas\ServiceManager\ServiceLocatorInterface;
8

9
class AuthenticationService implements FactoryInterface
10
{
NEW
11
    public function __invoke(ContainerInterface $serviceLocator, $requestedName, ?array $options = null)
×
12
    {
13
        return new \Laminas\Authentication\AuthenticationService(
×
14
            $serviceLocator->get('LmcUser\Authentication\Storage\Db'),
×
15
            $serviceLocator->get('LmcUser\Authentication\Adapter\AdapterChain')
×
16
        );
×
17
    }
18

19
    /**
20
     * Create service
21
     *
22
     * @param  ServiceLocatorInterface $serviceLocator
23
     * @return mixed
24
     */
25
    public function createService(ServiceLocatorInterface $serviceLocator)
×
26
    {
27
        return $this->__invoke($serviceLocator, null);
×
28
    }
29
}
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