Skip to content

Commit 745ab83

Browse files
committed
annotate classes that are not meant to be extended as final
1 parent 87c61d2 commit 745ab83

21 files changed

+36
-0
lines changed

src/ClientFactory/AutoDiscoveryFactory.php

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
* Use auto discovery to find a HTTP client.
1111
*
1212
* @author Tobias Nyholm <[email protected]>
13+
*
14+
* @final
1315
*/
1416
class AutoDiscoveryFactory implements ClientFactory
1517
{

src/ClientFactory/BuzzFactory.php

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
/**
1313
* @author Tobias Nyholm <[email protected]>
14+
*
15+
* @final
1416
*/
1517
class BuzzFactory implements ClientFactory
1618
{

src/ClientFactory/CurlFactory.php

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* @author Tobias Nyholm <[email protected]>
13+
*
14+
* @final
1315
*/
1416
class CurlFactory implements ClientFactory
1517
{

src/ClientFactory/Guzzle5Factory.php

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
/**
1212
* @author Tobias Nyholm <[email protected]>
13+
*
14+
* @final
1315
*/
1416
class Guzzle5Factory implements ClientFactory
1517
{

src/ClientFactory/Guzzle6Factory.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
/**
1010
* @author Tobias Nyholm <[email protected]>
11+
*
12+
* @final
1113
*/
1214
class Guzzle6Factory implements ClientFactory
1315
{

src/ClientFactory/Guzzle7Factory.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
/**
1010
* @author Tobias Nyholm <[email protected]>
11+
*
12+
* @final
1113
*/
1214
class Guzzle7Factory implements ClientFactory
1315
{

src/ClientFactory/ReactFactory.php

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
/**
1111
* @author Tobias Nyholm <[email protected]>
12+
*
13+
* @final
1214
*/
1315
class ReactFactory implements ClientFactory
1416
{

src/ClientFactory/SocketFactory.php

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
/**
1111
* @author Tobias Nyholm <[email protected]>
12+
*
13+
* @final
1214
*/
1315
class SocketFactory implements ClientFactory
1416
{

src/ClientFactory/SymfonyFactory.php

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
/**
1313
* @author Tobias Nyholm <[email protected]>
14+
*
15+
* @final
1416
*/
1517
class SymfonyFactory implements ClientFactory
1618
{

src/Collector/Collector.php

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* @author Fabien Bourigault <[email protected]>
1919
*
2020
* @internal
21+
* @final
2122
*/
2223
class Collector extends DataCollector
2324
{

src/Collector/Formatter.php

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* @author Fabien Bourigault <[email protected]>
2121
*
2222
* @internal
23+
* @final
2324
*/
2425
class Formatter implements MessageFormatter
2526
{

src/Collector/ProfileClient.php

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* @author Fabien Bourigault <[email protected]>
2323
*
2424
* @internal
25+
* @final
2526
*/
2627
class ProfileClient implements HttpClient, HttpAsyncClient
2728
{

src/Collector/ProfileClientFactory.php

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* @author Fabien Bourigault <[email protected]>
1818
*
1919
* @internal
20+
* @final
2021
*/
2122
class ProfileClientFactory implements ClientFactory
2223
{

src/Collector/ProfilePlugin.php

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* @author Fabien Bourigault <[email protected]>
1717
*
1818
* @internal
19+
* @final
1920
*/
2021
class ProfilePlugin implements Plugin
2122
{

src/Collector/StackPlugin.php

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* @author Fabien Bourigault <[email protected]>
1717
*
1818
* @internal
19+
* @final
1920
*/
2021
class StackPlugin implements Plugin
2122
{

src/Collector/Twig/HttpMessageMarkupExtension.php

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
/**
1515
* @author Tobias Nyholm <[email protected]>
16+
*
17+
* @final
1618
*/
1719
class HttpMessageMarkupExtension extends AbstractExtension
1820
{

src/DependencyInjection/Configuration.php

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
*
3232
* @author David Buchmann <[email protected]>
3333
* @author Tobias Nyholm <[email protected]>
34+
*
35+
* @final
3436
*/
3537
class Configuration implements ConfigurationInterface
3638
{

src/DependencyInjection/HttplugExtension.php

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
/**
4343
* @author David Buchmann <[email protected]>
4444
* @author Tobias Nyholm <[email protected]>
45+
*
46+
* @final
4547
*/
4648
class HttplugExtension extends Extension
4749
{

src/Discovery/ConfiguredClientsStrategy.php

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* we can use the web debug toolbar for clients found with the discovery.
1515
*
1616
* @author Tobias Nyholm <[email protected]>
17+
*
18+
* @final
1719
*/
1820
class ConfiguredClientsStrategy implements DiscoveryStrategy
1921
{

src/Discovery/ConfiguredClientsStrategyListener.php

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
/**
1111
* @author Wouter de Jong <[email protected]>
12+
*
13+
* @final
1214
*/
1315
class ConfiguredClientsStrategyListener implements EventSubscriberInterface
1416
{

src/HttplugBundle.php

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
/**
1010
* @author David Buchmann <[email protected]>
1111
* @author Tobias Nyholm <[email protected]>
12+
*
13+
* @final
1214
*/
1315
class HttplugBundle extends Bundle
1416
{

0 commit comments

Comments
 (0)