Skip to content

Commit ade8f9f

Browse files
committed
Update formatting
1 parent 914c807 commit ade8f9f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+127
-42
lines changed

src/Toolkit/Cache/CacheStore.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ public function __construct(string $filename = ':memory:')
5050
);
5151
}
5252

53-
/** @internal */
53+
/**
54+
* @internal
55+
*/
5456
protected function __clone() {}
5557

5658
/**

src/Toolkit/Cli/CliCommand.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@
2727
*/
2828
abstract class CliCommand implements CliCommandInterface
2929
{
30-
/** @api */
30+
/**
31+
* @api
32+
*/
3133
protected CliApplicationInterface $App;
34+
3235
/** @var string[] */
3336
private array $Name = [];
3437
/** @var array<string,CliOption>|null */

src/Toolkit/Contract/Collection/CollectionInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ interface CollectionInterface extends
5555
*/
5656
public const FIND_KEY = 8;
5757

58-
/** @param Arrayable<TKey,TValue>|iterable<TKey,TValue> $items */
58+
/**
59+
* @param Arrayable<TKey,TValue>|iterable<TKey,TValue> $items
60+
*/
5961
public function __construct($items = []);
6062

6163
/**

src/Toolkit/Contract/Container/ArgumentsNotUsedExceptionInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22

33
namespace Salient\Contract\Container;
44

5-
/** @api */
5+
/**
6+
* @api
7+
*/
68
interface ArgumentsNotUsedExceptionInterface extends ContainerExceptionInterface {}

src/Toolkit/Contract/Container/ContainerExceptionInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@
44

55
use Psr\Container\ContainerExceptionInterface as PsrContainerExceptionInterface;
66

7-
/** @api */
7+
/**
8+
* @api
9+
*/
810
interface ContainerExceptionInterface extends PsrContainerExceptionInterface {}

src/Toolkit/Contract/Container/InvalidServiceExceptionInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22

33
namespace Salient\Contract\Container;
44

5-
/** @api */
5+
/**
6+
* @api
7+
*/
68
interface InvalidServiceExceptionInterface extends ContainerExceptionInterface {}

src/Toolkit/Contract/Container/ServiceNotFoundExceptionInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@
44

55
use Psr\Container\NotFoundExceptionInterface;
66

7-
/** @api */
7+
/**
8+
* @api
9+
*/
810
interface ServiceNotFoundExceptionInterface extends ContainerExceptionInterface, NotFoundExceptionInterface {}

src/Toolkit/Contract/Core/Immutable.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22

33
namespace Salient\Contract\Core;
44

5-
/** @api */
5+
/**
6+
* @api
7+
*/
68
interface Immutable {}

src/Toolkit/Contract/Core/ProviderContextInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ public function withParent(?Treeable $parent);
7777
*/
7878
public function withConformity($conformity);
7979

80-
/** @return TProvider */
80+
/**
81+
* @return TProvider
82+
*/
8183
public function getProvider(): ProviderInterface;
8284

8385
/**

src/Toolkit/Contract/Http/HttpHeadersInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ interface HttpHeadersInterface extends
1717
Immutable,
1818
Stringable
1919
{
20-
/** @param Arrayable<string,string[]|string>|iterable<string,string[]|string> $items */
20+
/**
21+
* @param Arrayable<string,string[]|string>|iterable<string,string[]|string> $items
22+
*/
2123
public function __construct($items = []);
2224

2325
/**

0 commit comments

Comments
 (0)