Skip to content

Commit 299e1a7

Browse files
committed
minor #424 [Agent][McpSdk] Adds missing authors to various files (junaidbinfarooq)
This PR was merged into the main branch. Discussion ---------- [Agent][McpSdk] Adds missing authors to various files | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Docs? | no | Issues | Fix None | License | MIT # Changes proposed: - Adds missing authors to various files Commits ------- 91664ea chore: Adds missing authors to various files
2 parents f9be079 + 91664ea commit 299e1a7

28 files changed

+82
-0
lines changed

src/agent/src/Attribute/AsInputProcessor.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
namespace Symfony\AI\Agent\Attribute;
1313

14+
/**
15+
* @author Vincent Langlet <[email protected]>
16+
*/
1417
#[\Attribute(\Attribute::TARGET_CLASS | \Attribute::IS_REPEATABLE)]
1518
final readonly class AsInputProcessor
1619
{

src/agent/src/Attribute/AsOutputProcessor.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
namespace Symfony\AI\Agent\Attribute;
1313

14+
/**
15+
* @author Vincent Langlet <[email protected]>
16+
*/
1417
#[\Attribute(\Attribute::TARGET_CLASS | \Attribute::IS_REPEATABLE)]
1518
final readonly class AsOutputProcessor
1619
{

src/agent/src/Chat/MessageStore/CacheStore.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
use Symfony\AI\Agent\Exception\RuntimeException;
1717
use Symfony\AI\Platform\Message\MessageBag;
1818

19+
/**
20+
* @author Christopher Hertel <[email protected]>
21+
*/
1922
final readonly class CacheStore implements MessageStoreInterface
2023
{
2124
public function __construct(

src/agent/src/Chat/MessageStore/InMemoryStore.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
use Symfony\AI\Agent\Chat\MessageStoreInterface;
1515
use Symfony\AI\Platform\Message\MessageBag;
1616

17+
/**
18+
* @author Christopher Hertel <[email protected]>
19+
*/
1720
final class InMemoryStore implements MessageStoreInterface
1821
{
1922
private MessageBag $messages;

src/agent/src/Chat/MessageStore/SessionStore.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
use Symfony\Component\HttpFoundation\RequestStack;
1818
use Symfony\Component\HttpFoundation\Session\SessionInterface;
1919

20+
/**
21+
* @author Christopher Hertel <[email protected]>
22+
*/
2023
final readonly class SessionStore implements MessageStoreInterface
2124
{
2225
private SessionInterface $session;

src/mcp-sdk/src/Capability/Prompt/IdentifierInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
namespace Symfony\AI\McpSdk\Capability\Prompt;
1313

14+
/**
15+
* @author Tobias Nyholm <[email protected]>
16+
*/
1417
interface IdentifierInterface
1518
{
1619
public function getName(): string;

src/mcp-sdk/src/Capability/Resource/CollectionInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
use Symfony\AI\McpSdk\Exception\InvalidCursorException;
1515

16+
/**
17+
* @author Tobias Nyholm <[email protected]>
18+
*/
1619
interface CollectionInterface
1720
{
1821
/**

src/mcp-sdk/src/Capability/Resource/IdentifierInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
namespace Symfony\AI\McpSdk\Capability\Resource;
1313

14+
/**
15+
* @author Tobias Nyholm <[email protected]>
16+
*/
1417
interface IdentifierInterface
1518
{
1619
public function getUri(): string;

src/mcp-sdk/src/Capability/Resource/MetadataInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
namespace Symfony\AI\McpSdk\Capability\Resource;
1313

14+
/**
15+
* @author Tobias Nyholm <[email protected]>
16+
*/
1417
interface MetadataInterface extends IdentifierInterface
1518
{
1619
public function getName(): string;

src/mcp-sdk/src/Capability/Resource/ResourceReaderInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
use Symfony\AI\McpSdk\Exception\ResourceNotFoundException;
1515
use Symfony\AI\McpSdk\Exception\ResourceReadException;
1616

17+
/**
18+
* @author Tobias Nyholm <[email protected]>
19+
*/
1720
interface ResourceReaderInterface
1821
{
1922
/**

0 commit comments

Comments
 (0)