From 30f0b65f5c18cedb79dab7c1642eeddbf5d459da Mon Sep 17 00:00:00 2001 From: TheTechRobo <52163910+TheTechRobo@users.noreply.github.com> Date: Thu, 16 Dec 2021 19:37:54 -0500 Subject: [PATCH] php(bob): fix "toOrdinal" to "respondTo" In Bob, the placeholder said "Implement the toOrdinal function" instead of respondTo. This PR is a very minor one that solves this. --- exercises/practice/bob/Bob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/bob/Bob.php b/exercises/practice/bob/Bob.php index aa0abc6e..a708da81 100644 --- a/exercises/practice/bob/Bob.php +++ b/exercises/practice/bob/Bob.php @@ -28,6 +28,6 @@ class Bob { public function respondTo(string $str): string { - throw new \BadMethodCallException("Implement the toOrdinal function"); + throw new \BadMethodCallException("Implement the respondTo function"); } }