Skip to content

Commit 3800e78

Browse files
committed
Add get() to repository
1 parent 18173db commit 3800e78

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ coverage
55
docs
66
vendor
77
.phpunit.result.cache
8+
.idea

src/Support/Repository.php

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ public function set(string $key, $value): array
2626
return $this->items;
2727
}
2828

29+
public function get(string $key): ?array
30+
{
31+
return $this->items[$key] ?? null;
32+
}
33+
2934
/**
3035
* @param string $key
3136
* @param mixed $value

tests/ServiceExceptionTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function it_throws_an_exception_if_there_is_a_server_error()
5151
}
5252

5353
/** @test */
54-
public function it_throws_an_unexpected_response_code_exception_if_all_else_fails()
54+
public function it_throws_an_unexpected_response_code_exception_if_response_code_is_unrecognized()
5555
{
5656
$this->expectExceptionObject(ServiceException::unexpectedResponseCode(Response::HTTP_I_AM_A_TEAPOT));
5757

0 commit comments

Comments
 (0)