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

mimmi20 / navigation-helper-htmlify / 12097071151

30 Nov 2024 02:15PM UTC coverage: 100.0%. First build
12097071151

Pull #156

github

web-flow
composer(deps-dev): update symfony/console requirement

Updates the requirements on [symfony/console](https://github.com/symfony/console) to permit the latest version.
- [Release notes](https://github.com/symfony/console/releases)
- [Changelog](https://github.com/symfony/console/blob/7.2/CHANGELOG.md)
- [Commits](https://github.com/symfony/console/compare/v7.1.8...v7.2.0)

---
updated-dependencies:
- dependency-name: symfony/console
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #156: composer(deps-dev): update symfony/console requirement from ^7.1.8 to ^7.2.0

68 of 68 relevant lines covered (100.0%)

7.49 hits per line

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

100.0
/src/Module.php
1
<?php
2

3
/**
4
 * This file is part of the mimmi20/navigation-helper-htmlify package.
5
 *
6
 * Copyright (c) 2021-2024, Thomas Mueller <mimmi20@live.de>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11

12
declare(strict_types = 1);
13

14
namespace Mimmi20\NavigationHelper\Htmlify;
15

16
use Laminas\ModuleManager\Feature\ConfigProviderInterface;
17
use Laminas\ModuleManager\Feature\DependencyIndicatorInterface;
18
use Override;
19

20
final class Module implements ConfigProviderInterface, DependencyIndicatorInterface
21
{
22
    /**
23
     * Return default configuration for laminas-mvc applications.
24
     *
25
     * @return array<string, array<string, array<int|string, string>>>
26
     * @phpstan-return array{service_manager: array{aliases: array<string, class-string>, factories: array<class-string, class-string>}}
27
     *
28
     * @throws void
29
     */
30
    #[Override]
1✔
31
    public function getConfig(): array
32
    {
33
        $provider = new ConfigProvider();
1✔
34

35
        return [
1✔
36
            'service_manager' => $provider->getDependencyConfig(),
1✔
37
        ];
1✔
38
    }
39

40
    /**
41
     * Expected to return an array of modules on which the current one depends on
42
     *
43
     * @return array<int, string>
44
     *
45
     * @throws void
46
     */
47
    #[Override]
1✔
48
    public function getModuleDependencies(): array
49
    {
50
        return ['Laminas\Navigation'];
1✔
51
    }
52
}
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