Skip to content

Commit

Permalink
Add GitHubManagerExtension.php
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael Esayeas <nathanael.esayeas@protonmail.com>
  • Loading branch information
ghostwriter committed Jul 17, 2024
1 parent 2760ce3 commit 0097518
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Service/Extension/GitHubManagerExtension.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

declare(strict_types=1);

namespace Ghostwriter\Arm\Service\Extension;

use Ghostwriter\Container\Interface\ContainerInterface;
use Ghostwriter\Container\Interface\ExtensionInterface;
use Override;

final class GitHubManagerExtension implements ExtensionInterface
{
#[Override]
public function __invoke(ContainerInterface $container, object $service): object
{
return $service;
}
}

0 comments on commit 0097518

Please sign in to comment.