Skip to content

Make factories, discoveries, exception final, closes #20 #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 18, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/HttpAsyncClientDiscovery.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @author Joel Wurtz <[email protected]>
*/
class HttpAsyncClientDiscovery extends ClassDiscovery
final class HttpAsyncClientDiscovery extends ClassDiscovery
{
/**
* @var HttpAsyncClient
Expand Down
2 changes: 1 addition & 1 deletion src/HttpClientDiscovery.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @author Márk Sági-Kazár <[email protected]>
*/
class HttpClientDiscovery extends ClassDiscovery
final class HttpClientDiscovery extends ClassDiscovery
{
/**
* @var HttpClient
Expand Down
2 changes: 1 addition & 1 deletion src/MessageFactory/DiactorosFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author GeLo <[email protected]>
*/
class DiactorosFactory implements MessageFactory
final class DiactorosFactory implements MessageFactory
{
/**
* {@inheritdoc}
Expand Down
2 changes: 1 addition & 1 deletion src/MessageFactory/GuzzleFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* @author Márk Sági-Kazár <[email protected]>
*/
class GuzzleFactory implements MessageFactory
final class GuzzleFactory implements MessageFactory
{
/**
* {@inheritdoc}
Expand Down
2 changes: 1 addition & 1 deletion src/MessageFactoryDiscovery.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @author Márk Sági-Kazár <[email protected]>
*/
class MessageFactoryDiscovery extends ClassDiscovery
final class MessageFactoryDiscovery extends ClassDiscovery
{
/**
* @var MessageFactory
Expand Down
3 changes: 1 addition & 2 deletions src/NotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*
* @author Márk Sági-Kazár <[email protected]>
*/
class NotFoundException extends \RuntimeException
final class NotFoundException extends \RuntimeException
{

}
2 changes: 1 addition & 1 deletion src/StreamFactory/DiactorosStreamFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* @author Михаил Красильников <[email protected]>
*/
class DiactorosStreamFactory implements StreamFactory
final class DiactorosStreamFactory implements StreamFactory
{
/**
* Creates a stream
Expand Down
2 changes: 1 addition & 1 deletion src/StreamFactory/GuzzleStreamFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Михаил Красильников <[email protected]>
*/
class GuzzleStreamFactory implements StreamFactory
final class GuzzleStreamFactory implements StreamFactory
{
/**
* Creates a stream
Expand Down
2 changes: 1 addition & 1 deletion src/StreamFactoryDiscovery.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @author Михаил Красильников <[email protected]>
*/
class StreamFactoryDiscovery extends ClassDiscovery
final class StreamFactoryDiscovery extends ClassDiscovery
{
/**
* @var StreamFactory
Expand Down
2 changes: 1 addition & 1 deletion src/UriFactory/DiactorosFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* @author David de Boer <[email protected]>
*/
class DiactorosFactory implements UriFactory
final class DiactorosFactory implements UriFactory
{
/**
* {@inheritdoc}
Expand Down
2 changes: 1 addition & 1 deletion src/UriFactory/GuzzleFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*
* @author David de Boer <[email protected]>
*/
class GuzzleFactory implements UriFactory
final class GuzzleFactory implements UriFactory
{
/**
* {@inheritdoc}
Expand Down
2 changes: 1 addition & 1 deletion src/UriFactoryDiscovery.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @author David de Boer <[email protected]>
*/
class UriFactoryDiscovery extends ClassDiscovery
final class UriFactoryDiscovery extends ClassDiscovery
{
/**
* @var UriFactory
Expand Down