diff --git a/src/ClientFactory/AutoDiscoveryFactory.php b/src/ClientFactory/AutoDiscoveryFactory.php index 1c2bf5b9..132a305d 100644 --- a/src/ClientFactory/AutoDiscoveryFactory.php +++ b/src/ClientFactory/AutoDiscoveryFactory.php @@ -10,6 +10,8 @@ * Use auto discovery to find a HTTP client. * * @author Tobias Nyholm + * + * @final */ class AutoDiscoveryFactory implements ClientFactory { diff --git a/src/ClientFactory/BuzzFactory.php b/src/ClientFactory/BuzzFactory.php index 1a0f148d..fc6dd7ed 100644 --- a/src/ClientFactory/BuzzFactory.php +++ b/src/ClientFactory/BuzzFactory.php @@ -11,6 +11,8 @@ /** * @author Tobias Nyholm + * + * @final */ class BuzzFactory implements ClientFactory { diff --git a/src/ClientFactory/CurlFactory.php b/src/ClientFactory/CurlFactory.php index 1d663cb7..6424b737 100644 --- a/src/ClientFactory/CurlFactory.php +++ b/src/ClientFactory/CurlFactory.php @@ -10,6 +10,8 @@ /** * @author Tobias Nyholm + * + * @final */ class CurlFactory implements ClientFactory { diff --git a/src/ClientFactory/Guzzle5Factory.php b/src/ClientFactory/Guzzle5Factory.php index 38eb6d28..995c434a 100644 --- a/src/ClientFactory/Guzzle5Factory.php +++ b/src/ClientFactory/Guzzle5Factory.php @@ -10,6 +10,8 @@ /** * @author Tobias Nyholm + * + * @final */ class Guzzle5Factory implements ClientFactory { diff --git a/src/ClientFactory/Guzzle6Factory.php b/src/ClientFactory/Guzzle6Factory.php index 92d9da46..2a511f6d 100644 --- a/src/ClientFactory/Guzzle6Factory.php +++ b/src/ClientFactory/Guzzle6Factory.php @@ -8,6 +8,8 @@ /** * @author Tobias Nyholm + * + * @final */ class Guzzle6Factory implements ClientFactory { diff --git a/src/ClientFactory/Guzzle7Factory.php b/src/ClientFactory/Guzzle7Factory.php index 6045ab03..25741cbd 100644 --- a/src/ClientFactory/Guzzle7Factory.php +++ b/src/ClientFactory/Guzzle7Factory.php @@ -8,6 +8,8 @@ /** * @author Tobias Nyholm + * + * @final */ class Guzzle7Factory implements ClientFactory { diff --git a/src/ClientFactory/ReactFactory.php b/src/ClientFactory/ReactFactory.php index 489467ca..2fd715e6 100644 --- a/src/ClientFactory/ReactFactory.php +++ b/src/ClientFactory/ReactFactory.php @@ -9,6 +9,8 @@ /** * @author Tobias Nyholm + * + * @final */ class ReactFactory implements ClientFactory { diff --git a/src/ClientFactory/SocketFactory.php b/src/ClientFactory/SocketFactory.php index 7407f6fb..26432355 100644 --- a/src/ClientFactory/SocketFactory.php +++ b/src/ClientFactory/SocketFactory.php @@ -9,6 +9,8 @@ /** * @author Tobias Nyholm + * + * @final */ class SocketFactory implements ClientFactory { diff --git a/src/ClientFactory/SymfonyFactory.php b/src/ClientFactory/SymfonyFactory.php index 31d89fa1..1b52e620 100644 --- a/src/ClientFactory/SymfonyFactory.php +++ b/src/ClientFactory/SymfonyFactory.php @@ -11,6 +11,8 @@ /** * @author Tobias Nyholm + * + * @final */ class SymfonyFactory implements ClientFactory { diff --git a/src/Collector/Collector.php b/src/Collector/Collector.php index 5551d804..215dbdd9 100644 --- a/src/Collector/Collector.php +++ b/src/Collector/Collector.php @@ -18,6 +18,7 @@ * @author Fabien Bourigault * * @internal + * @final */ class Collector extends DataCollector { diff --git a/src/Collector/Formatter.php b/src/Collector/Formatter.php index 29be2d96..a7ce58c8 100644 --- a/src/Collector/Formatter.php +++ b/src/Collector/Formatter.php @@ -20,6 +20,7 @@ * @author Fabien Bourigault * * @internal + * @final */ class Formatter implements MessageFormatter { diff --git a/src/Collector/ProfileClient.php b/src/Collector/ProfileClient.php index ba796a76..8b43f9ff 100644 --- a/src/Collector/ProfileClient.php +++ b/src/Collector/ProfileClient.php @@ -22,6 +22,7 @@ * @author Fabien Bourigault * * @internal + * @final */ class ProfileClient implements HttpClient, HttpAsyncClient { diff --git a/src/Collector/ProfileClientFactory.php b/src/Collector/ProfileClientFactory.php index 23d17fdc..6adf7e83 100644 --- a/src/Collector/ProfileClientFactory.php +++ b/src/Collector/ProfileClientFactory.php @@ -17,6 +17,7 @@ * @author Fabien Bourigault * * @internal + * @final */ class ProfileClientFactory implements ClientFactory { diff --git a/src/Collector/ProfilePlugin.php b/src/Collector/ProfilePlugin.php index 3f362b32..b3cd3100 100644 --- a/src/Collector/ProfilePlugin.php +++ b/src/Collector/ProfilePlugin.php @@ -16,6 +16,7 @@ * @author Fabien Bourigault * * @internal + * @final */ class ProfilePlugin implements Plugin { diff --git a/src/Collector/StackPlugin.php b/src/Collector/StackPlugin.php index a71e2f0b..cdcc9828 100644 --- a/src/Collector/StackPlugin.php +++ b/src/Collector/StackPlugin.php @@ -16,6 +16,7 @@ * @author Fabien Bourigault * * @internal + * @final */ class StackPlugin implements Plugin { diff --git a/src/Collector/Twig/HttpMessageMarkupExtension.php b/src/Collector/Twig/HttpMessageMarkupExtension.php index 562ebece..37cad424 100644 --- a/src/Collector/Twig/HttpMessageMarkupExtension.php +++ b/src/Collector/Twig/HttpMessageMarkupExtension.php @@ -13,6 +13,8 @@ /** * @author Tobias Nyholm + * + * @final */ class HttpMessageMarkupExtension extends AbstractExtension { diff --git a/src/DependencyInjection/Configuration.php b/src/DependencyInjection/Configuration.php index 62276584..859cdd4c 100644 --- a/src/DependencyInjection/Configuration.php +++ b/src/DependencyInjection/Configuration.php @@ -31,6 +31,8 @@ * * @author David Buchmann * @author Tobias Nyholm + * + * @final */ class Configuration implements ConfigurationInterface { diff --git a/src/DependencyInjection/HttplugExtension.php b/src/DependencyInjection/HttplugExtension.php index f5d63ceb..6b91193e 100644 --- a/src/DependencyInjection/HttplugExtension.php +++ b/src/DependencyInjection/HttplugExtension.php @@ -42,6 +42,8 @@ /** * @author David Buchmann * @author Tobias Nyholm + * + * @final */ class HttplugExtension extends Extension { diff --git a/src/Discovery/ConfiguredClientsStrategy.php b/src/Discovery/ConfiguredClientsStrategy.php index 1739d7b6..7870ef46 100644 --- a/src/Discovery/ConfiguredClientsStrategy.php +++ b/src/Discovery/ConfiguredClientsStrategy.php @@ -14,6 +14,8 @@ * we can use the web debug toolbar for clients found with the discovery. * * @author Tobias Nyholm + * + * @final */ class ConfiguredClientsStrategy implements DiscoveryStrategy { diff --git a/src/Discovery/ConfiguredClientsStrategyListener.php b/src/Discovery/ConfiguredClientsStrategyListener.php index 82cefcd8..7f0f7fc5 100644 --- a/src/Discovery/ConfiguredClientsStrategyListener.php +++ b/src/Discovery/ConfiguredClientsStrategyListener.php @@ -9,6 +9,8 @@ /** * @author Wouter de Jong + * + * @final */ class ConfiguredClientsStrategyListener implements EventSubscriberInterface { diff --git a/src/HttplugBundle.php b/src/HttplugBundle.php index d6aa836d..c9d09a53 100644 --- a/src/HttplugBundle.php +++ b/src/HttplugBundle.php @@ -9,6 +9,8 @@ /** * @author David Buchmann * @author Tobias Nyholm + * + * @final */ class HttplugBundle extends Bundle {