diff --git a/LICENSE b/LICENSE index 74cdc2dbf..7536caeae 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2018-2022 Fabien Potencier +Copyright (c) 2018-present Fabien Potencier Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 41e054a10..42841a57d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Symfony Service Contracts A set of abstractions extracted out of the Symfony components. -Can be used to build on semantics that the Symfony components proved useful - and +Can be used to build on semantics that the Symfony components proved useful and that already have battle tested implementations. See https://github.com/symfony/contracts/blob/main/README.md for more information. diff --git a/ResetInterface.php b/ResetInterface.php index 1af1075ee..a4f389b01 100644 --- a/ResetInterface.php +++ b/ResetInterface.php @@ -26,5 +26,8 @@ */ interface ResetInterface { + /** + * @return void + */ public function reset(); } diff --git a/ServiceProviderInterface.php b/ServiceProviderInterface.php index a28fd82ea..c05e4bfe7 100644 --- a/ServiceProviderInterface.php +++ b/ServiceProviderInterface.php @@ -19,7 +19,7 @@ * @author Nicolas Grekas
* @author Mateusz Sip