-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
annotate classes that are not meant to be extended as final
- Loading branch information
Showing
21 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,8 @@ | |
* Use auto discovery to find a HTTP client. | ||
* | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class AutoDiscoveryFactory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ | |
|
||
/** | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class BuzzFactory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,8 @@ | |
|
||
/** | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class CurlFactory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,8 @@ | |
|
||
/** | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class Guzzle5Factory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
|
||
/** | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class Guzzle6Factory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
|
||
/** | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class Guzzle7Factory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ | |
|
||
/** | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class ReactFactory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ | |
|
||
/** | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class SocketFactory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ | |
|
||
/** | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class SymfonyFactory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
* @author Fabien Bourigault <[email protected]> | ||
* | ||
* @internal | ||
* @final | ||
*/ | ||
class Collector extends DataCollector | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ | |
* @author Fabien Bourigault <[email protected]> | ||
* | ||
* @internal | ||
* @final | ||
*/ | ||
class Formatter implements MessageFormatter | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
* @author Fabien Bourigault <[email protected]> | ||
* | ||
* @internal | ||
* @final | ||
*/ | ||
class ProfileClient implements HttpClient, HttpAsyncClient | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
* @author Fabien Bourigault <[email protected]> | ||
* | ||
* @internal | ||
* @final | ||
*/ | ||
class ProfileClientFactory implements ClientFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
* @author Fabien Bourigault <[email protected]> | ||
* | ||
* @internal | ||
* @final | ||
*/ | ||
class ProfilePlugin implements Plugin | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
* @author Fabien Bourigault <[email protected]> | ||
* | ||
* @internal | ||
* @final | ||
*/ | ||
class StackPlugin implements Plugin | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,8 @@ | |
|
||
/** | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class HttpMessageMarkupExtension extends AbstractExtension | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,8 @@ | |
* | ||
* @author David Buchmann <[email protected]> | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class Configuration implements ConfigurationInterface | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,8 @@ | |
/** | ||
* @author David Buchmann <[email protected]> | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class HttplugExtension extends Extension | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,8 @@ | |
* we can use the web debug toolbar for clients found with the discovery. | ||
* | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class ConfiguredClientsStrategy implements DiscoveryStrategy | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ | |
|
||
/** | ||
* @author Wouter de Jong <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class ConfiguredClientsStrategyListener implements EventSubscriberInterface | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ | |
/** | ||
* @author David Buchmann <[email protected]> | ||
* @author Tobias Nyholm <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
class HttplugBundle extends Bundle | ||
{ | ||
|