From 84d1634cb0be26ad8fd825b8225052d6205cb7c7 Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Thu, 4 Jan 2018 12:22:57 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/StreamFactory.php | 4 ++-- src/UriFactory.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/StreamFactory.php b/src/StreamFactory.php index 327a902..e151389 100644 --- a/src/StreamFactory.php +++ b/src/StreamFactory.php @@ -18,8 +18,8 @@ interface StreamFactory * * @return StreamInterface * - * @throws \InvalidArgumentException If the stream body is invalid. - * @throws \RuntimeException If creating the stream from $body fails. + * @throws \InvalidArgumentException if the stream body is invalid + * @throws \RuntimeException if creating the stream from $body fails */ public function createStream($body = null); } diff --git a/src/UriFactory.php b/src/UriFactory.php index f05e625..e8d8f90 100644 --- a/src/UriFactory.php +++ b/src/UriFactory.php @@ -18,7 +18,7 @@ interface UriFactory * * @return UriInterface * - * @throws \InvalidArgumentException If the $uri argument can not be converted into a valid URI. + * @throws \InvalidArgumentException if the $uri argument can not be converted into a valid URI */ public function createUri($uri); }